home *** CD-ROM | disk | FTP | other *** search
- ; INIUpdate Comments begin with a Semi-Colon!
- ;
- ; This file is used to update WIN.INI. It demonstrates all the capabilities
- ; of INIUPDate.
- ;
- ; * Adding New Sections
- ; * Unconditionally Deleteing Lines
- ; * Updating Key Values
- ; * Adding Lines To Existing Sections
- ; * Conditionally Deleting Lines
-
- [WordProcess]
- ; This section will be added to WIN.INI
- Buttons=On
- Margins=0,1
- Colors=Default
-
- [Windows]
- ; BorderWidth will be deleted, regardless of what it is set to
- ; This is an UNCONDITIONAL DELETION
- BorderWidth=
-
- [Desktop]
- ; IconTitleSize will change from 8 to 10
- ; DoubleClickWidth will be added
- ; DoubleClickHeight will be added
- IconTitleSize=10
- DoubleClickWidth=4
- DoubleClickHeight=4
-
- [Ports]
- ; FILE:= will be deleted, but only if it equals C:\WINPRINT.FIL
- ; This is a CONDITIONAL DELETION
- FILE:=C:\WINPRINT.FIL {DEL}
-
-